home *** CD-ROM | disk | FTP | other *** search
/ Cre@te Online 2000 December / Cre@teOnline CD05.iso / MacSoft / XML ConsoleMax.sea / XML ConsoleMax / Required / xml4j.jar / org / w3c / dom / ProcessingInstruction.class (.txt) < prev    next >
Encoding:
Java Class File  |  1999-08-30  |  355 b   |  10 lines

  1. package org.w3c.dom;
  2.  
  3. public interface ProcessingInstruction extends Node {
  4.    String getTarget();
  5.  
  6.    String getData();
  7.  
  8.    void setData(String var1) throws DOMException;
  9. }
  10.